home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / Tickle-4.0 (tcl) / library / help / Tcl.brf < prev    next >
Encoding:
Text File  |  1993-11-05  |  3.3 KB  |  66 lines  |  [TEXT/$Tcl]

  1. tcl:control:break     Abort looping command
  2. tcl:control:case     Evaluate one of several scripts, depending on a given value
  3. tcl:control:catch     Evaluate script and trap exceptional returns
  4. tcl:control:continue     Skip to the next iteration of a loop
  5. tcl:control:error     Generate an error
  6. tcl:control:eval     Evaluate a Tcl script
  7. tcl:control:exit     End the application
  8. tcl:control:for     ``For'' loop
  9. tcl:control:foreach     Iterate over all elements in a list
  10. tcl:control:if     Execute scripts conditionally
  11. tcl:control:proc     Create a Tcl procedure
  12. tcl:control:rename     Rename or delete a command
  13. tcl:control:return     Return from a procedure
  14. tcl:control:source     Evaluate a file as a Tcl script
  15. tcl:control:switch     Evaluate one of several scripts, depending on a given value
  16. tcl:control:uplevel     Execute a script in a different stack frame
  17. tcl:control:while     Execute script repeatedly as long as a condition is met
  18. tcl:files:close     Close an open file
  19. tcl:files:eof     Check for end-of-file condition on open file
  20. tcl:files:file     Manipulate file names and attributes
  21. tcl:files:flush     Flush buffered output for a file
  22. tcl:files:gets     Read a line from a file
  23. tcl:files:glob     Return names of files that match patterns
  24. tcl:files:open     Open a file
  25. tcl:files:puts     Write to a file
  26. tcl:files:read     Read from a file
  27. tcl:files:seek     Change the access position for an open file
  28. tcl:files:tell     Return current access position for an open file
  29. tcl:intro:syntax     Summary of Tcl language syntax.
  30. tcl:libraries:library     standard library of Tcl procedures
  31. tcl:libraries:unknown     Handle attempts to use non-existent commands
  32. tcl:lists:concat     Join lists together
  33. tcl:lists:join     Create a string by joining together list elements
  34. tcl:lists:lappend     Append list elements onto a variable
  35. tcl:lists:lindex     Retrieve an element from a list
  36. tcl:lists:linsert     Insert elements into a list
  37. tcl:lists:list     Create a list
  38. tcl:lists:llength     Count the number of elements in a list
  39. tcl:lists:lrange     Return one or more adjacent elements from a list
  40. tcl:lists:lreplace     Replace elements in a list with new elements
  41. tcl:lists:lsearch     See if a list contains a particular element
  42. tcl:lists:lsort     Sort the elements of a list
  43. tcl:lists:split     Split a string into a proper Tcl list
  44. tcl:math:expr     Evalue an expression
  45. tcl:math:incr     Increment the value of a variable
  46. tcl:processes:exec     Invoke subprocess(es)
  47. tcl:processes:pid     Retrieve process id(s)
  48. tcl:status:cd     Change working directory
  49. tcl:status:history     Manipulate the history list
  50. tcl:status:info     Return information about the state of the Tcl interpreter
  51. tcl:status:pwd     Return the current working directory
  52. tcl:strings:append     Append to variable
  53. tcl:strings:format     Format a string in the style of sprintf
  54. tcl:strings:regexp     Match a regular expression against a string
  55. tcl:strings:regsub     Perform substitutions based on regular expression pattern matching
  56. tcl:strings:scan     Parse string using conversion specifiers in the style of sscanf
  57. tcl:strings:string     Manipulate strings
  58. tcl:time:time     Time the execution of a script
  59. tcl:variables:array     Manipulate array variables
  60. tcl:variables:global     Access global variables
  61. tcl:variables:set     Read and write variables
  62. tcl:variables:stdvars     Variables used by Tcl
  63. tcl:variables:trace     Monitor variable accesses
  64. tcl:variables:unset     Delete variables
  65. tcl:variables:upvar     Create link to variable in a different stack frame
  66.